home *** CD-ROM | disk | FTP | other *** search
- atalk <- amigatalk
- atags <- ARexxTags new
- myport <- ARexxPort new
-
- (' ') print
- ('Executing the TestARexx file...') print
-
- atalk setIOTitle: 'Testing ARexxPort Class:'
- atalk setIOMessage: 'This test will mimic the selection of'
- atalk displayString: 'the "Workbench About" menu item via ARexx'
-
- myActionCode <- atags arexxTag: #RXCOMM
- myActionCode <- myActionCode + (atags arexxTag: #RXFF_STRING)
-
- myport open: 'ChkARexxPort'
-
- myport setRMAction: myActionCode
-
- myport sendRexxCmd: 'ADDRESS workbench;"MENU Window root INVOKE WORKBENCH.ABOUT"'
-
- myport close
-
- ('Finished with TestARexx!!') print
-